home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / libraries / ptreplay.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  777b  |  29 lines

  1.  
  2. /* ptreplay.h -- definition of ptreplay.library structures */
  3.  
  4. #ifndef    LIBRARIES_PTREPLAY_H 
  5. #define LIBRARIES_PTREPLAY_H
  6.  
  7. #ifndef    EXEC_TYPES_H
  8. #include <exec/types.h>
  9. #endif
  10.  
  11. #define PTREPLAYNAME "ptreplay.library"
  12.  
  13. Struct Module
  14.     STRPTR mod_Name
  15. /* The rest is private for now, but more details may be released later. */
  16. End Struct
  17.  
  18. /* This structure is returned by GetSample function */
  19. Struct PTSample
  20.     STRING _Name SIZE 22    /* Null terminated string with samplename */
  21.     SHORTINT Length        /* Sample length in words */
  22.     BYTE FineTune        /* FineTune of sample in lower 4 bits */
  23.     BYTE Volume        /* Volume of sample */
  24.     SHORTINT _Repeat    /* Repeat start in number of words */
  25.     SHORTINT Replen        /* Repeat length in number of words */
  26. End Struct
  27.  
  28. #endif /* LIBRARIES_PTREPLAY_H */
  29.